home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmSize
- Caption = "Change Size"
- ClientHeight = 2715
- ClientLeft = 1125
- ClientTop = 1485
- ClientWidth = 2355
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 2715
- ScaleWidth = 2355
- Begin VB.TextBox txtInfo
- Height = 615
- Left = 120
- TabIndex = 4
- Text = "Hello"
- Top = 1920
- Width = 1695
- End
- Begin VB.Frame fraFontSize
- Caption = "Font Size"
- Height = 1695
- Left = 360
- TabIndex = 0
- Top = 120
- Width = 1215
- Begin VB.OptionButton opt24pt
- Caption = "&24"
- Height = 375
- Left = 120
- TabIndex = 3
- Top = 1200
- Width = 735
- End
- Begin VB.OptionButton opt18pt
- Caption = "1&8"
- Height = 495
- Left = 120
- TabIndex = 2
- Top = 720
- Width = 735
- End
- Begin VB.OptionButton opt12pt
- Caption = "&12"
- Height = 375
- Left = 120
- TabIndex = 1
- Top = 360
- Width = 735
- End
- End
- Attribute VB_Name = "frmSize"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub opt12pt_Click()
- txtInfo.Font.Size = 12
- End Sub
- Private Sub opt18pt_Click()
- txtInfo.Font.Size = 18
- End Sub
- Private Sub opt24pt_Click()
- txtInfo.Font.Size = 24
- End Sub
-